Scroll to navigation

std::deque::operator[](3) C++ Standard Libary std::deque::operator[](3)

NAME

std::deque::operator[] - std::deque::operator[]

Synopsis


reference operator[]( size_type pos );
const_reference operator[]( size_type pos ) const;


Returns a reference to the element at specified location pos. No bounds checking is
performed.

Parameters


pos - position of the element to return

Return value


Reference to the requested element.

Complexity


Constant.

Notes


Unlike std::map::operator[], this operator never inserts a new element into the
container. Accessing a nonexistent element through this operator is undefined
behavior.

Example


The following code uses operator[] to read from and write to a std::deque<int>:

// Run this code


#include <deque>
#include <iostream>


int main()
{
std::deque<int> numbers {2, 4, 6, 8};


std::cout << "Second element: " << numbers[1] << '\n';


numbers[0] = 5;


std::cout << "All numbers:";
for (auto i : numbers) {
std::cout << ' ' << i;
}
std::cout << '\n';
}

Output:


Second element: 4
All numbers: 5 4 6 8

See also


at access specified element with bounds checking
(public member function)

2022.07.31 http://cppreference.com